Disable IGNORE_NEVER_REACHABLE_NEIGHBOR in tests that need it off. This flag is being changed to be true by default. Explicitly set it to false on flags that need it to be false. Bug: 329009735 Test: test-only change Change-Id: I87d25e783935b1ad66dc910615e7ac63aae1642a 
diff --git a/tests/integration/common/android/net/ip/IpClientIntegrationTestCommon.java b/tests/integration/common/android/net/ip/IpClientIntegrationTestCommon.java index b24d4f1..ee23c99 100644 --- a/tests/integration/common/android/net/ip/IpClientIntegrationTestCommon.java +++ b/tests/integration/common/android/net/ip/IpClientIntegrationTestCommon.java 
@@ -6047,6 +6047,7 @@  }    @Test + @Flag(name = IP_REACHABILITY_IGNORE_NEVER_REACHABLE_NEIGHBOR_VERSION, enabled = false)  @Flag(name = IP_REACHABILITY_IGNORE_NUD_FAILURE_VERSION, enabled = false)  @SignatureRequiredTest(reason = "need to delete cluster from real db in tearDown")  public void testIgnoreNudFailuresIfTooManyInPastDay_flagOff() throws Exception { @@ -6061,6 +6062,7 @@  }    @Test + @Flag(name = IP_REACHABILITY_IGNORE_NEVER_REACHABLE_NEIGHBOR_VERSION, enabled = false)  @Flag(name = IP_REACHABILITY_IGNORE_NUD_FAILURE_VERSION, enabled = true)  @SignatureRequiredTest(reason = "need to delete cluster from real db in tearDown")  public void testIgnoreNudFailuresIfTooManyInPastDay_notUpToThreshold() @@ -6094,6 +6096,7 @@  }    @Test + @Flag(name = IP_REACHABILITY_IGNORE_NEVER_REACHABLE_NEIGHBOR_VERSION, enabled = false)  @Flag(name = IP_REACHABILITY_IGNORE_NUD_FAILURE_VERSION, enabled = false)  @SignatureRequiredTest(reason = "need to delete cluster from real db in tearDown")  public void testIgnoreNudFailuresIfTooManyInPastWeek_flagOff() throws Exception { @@ -6180,6 +6183,7 @@  }    @Test + @Flag(name = IP_REACHABILITY_IGNORE_NEVER_REACHABLE_NEIGHBOR_VERSION, enabled = false)  @Flag(name = IP_REACHABILITY_IGNORE_NUD_FAILURE_VERSION, enabled = false)  @SignatureRequiredTest(reason = "need to delete cluster from real db in tearDown")  public void testIgnoreNudFailuresIfTooManyInPastWeek_stopWritingEvent_flagOff() @@ -6196,6 +6200,7 @@  }    @Test + @Flag(name = IP_REACHABILITY_IGNORE_NEVER_REACHABLE_NEIGHBOR_VERSION, enabled = false)  @Flag(name = IP_REACHABILITY_IGNORE_NUD_FAILURE_VERSION, enabled = true)  @SignatureRequiredTest(reason = "need to delete cluster from real db in tearDown")  public void testIgnoreNudFailuresIfTooManyInPastWeek_stopWritingEvent_notUpToThreshold()